@import url('https://fonts.googleapis.com/css2?family=DotGothic16&family=Exo:wght@400;700&family=Nanum+Gothic:wght@400;700&family=Pixelify+Sans&display=swap');

* {
    margin: 0;
    padding: 0;
}


body {
    font-family: montserrat;
    background: linear-gradient(125deg, #32CD32, #3CB371, #32CD32, #2E8B57);
    background-size: 400% 400%;
    animation: bganimate 15s infinite;
}

.wrapper{
    display: flex;
    justify-content: center;
    align-items: center;
    color: #ffffff;
    min-height: 100vh;
    font-size: 45px;
}

.wrapper p{
    background: rgba(255, 255, 255, .2);
    padding: 100px;
}

@keyframes bganimate {
0% {
    background-position: 0% 50%;
}
50% {
    background-position: 100% 50%;
}
100% {
    background-position: 0% 50%;
}
}

